home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970104-19970326 / 000105_news@columbia.edu _Fri Jan 24 19:34:54 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id TAA01325
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Fri, 24 Jan 1997 19:34:53 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id TAA07051
  7.     for kermit.misc@watsun; Fri, 24 Jan 1997 19:34:52 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: What kind of modem should I tell K-95 I have?
  12. Date: 25 Jan 1997 00:34:48 GMT
  13. Organization: Columbia University
  14. Lines: 75
  15. Message-ID: <5cbkf8$m14$1@apakabar.cc.columbia.edu>
  16. References: <5cbg2p$1r8q@ausnews.austin.ibm.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:6456
  19.  
  20. In article <5cbg2p$1r8q@ausnews.austin.ibm.com>,
  21. Tom Weaver <tvweaver@austin.ibm.com> wrote:
  22. : I'm trying to configure K95 1.1.9 for my system, an IBM Power Series 850
  23. : laptop running Windows NT Workstation 4.0.  Windows, under "modem
  24. : properties", says that its "28.8 V.34 PCMCIA Modem".  Under "PC Card", it
  25. : says, "PCMCIA 28.8/14.4 Data/Fax Modem".
  26. Swell.  So you got one of those no-name, no-documentation modems?
  27.  
  28. : None of the options in the K95 setup looked like this, so I tried "Hayes
  29. : 2400".  However, I've clearly got some more configuration to get right: while
  30. : Kermit will dial out and connect, and, apparently, pass output correctly to
  31. : the remote end (vt102 emulation), input from the remote end is blocked
  32. : strangely: each time I hit enter, another 10-20 characters print - though the
  33. : "enter" is sent to the remote end, which soon gets confused.  (So do I :-)
  34. : Any thoughts on how I should configure this?
  35. The Hayes 2400 does not have hardware flow control, but your modem probably
  36. does.  Unfortunately, we have no idea what its commands are, so we don't know
  37. how to control its features.
  38.  
  39. Some modems are set up to use high speeds, hardware flow control, error
  40. correction, data compression, and speed buffering by default -- or at least
  41. this is their factory configuration.  Who knows what your other software has
  42. done to the modem or what state it was left in.
  43.  
  44. You might try something like this:
  45.  
  46.   set modem type user-defined
  47.   set modem name noname-v34
  48.   set modem maximum-speed 57600
  49.   set modem capabilities AT SB EC DC HWFC
  50.   set modem command init-string AT&F\13
  51.   set modem dial-command atd%s\13
  52.   set modem command autoanswer on ats0=0\13
  53.   set modem command autoanswer off ats0=1\13
  54.   set modem command error-correction on {}
  55.   set modem command error-correction off {}
  56.   set modem command compression on {}
  57.   set modem command compression off {}
  58.   set modem command hangup-command ath0\13
  59.   set modem command hardware-flow {}
  60.   set modem command software-flow {}
  61.   set modem command no-flow-control {}
  62.   set modem command tone att\13
  63.   set modem command pulse atp\13
  64.  
  65. Put these commands in your K95CUSTOM.INI file and see if they work.
  66.  
  67. Then:
  68.  
  69.   set port com1 ; or whatever
  70.   set speed 57600
  71.   set modem speed-matching off
  72.   set flow rts/cts
  73.   set dial display on
  74.  
  75. Then DIAL and watch what happens.
  76.  
  77. Notes: 
  78.  
  79.  1. AT&F is the pseudo-semi-standard way to reset a "modern" modem's
  80.     factory defaults.
  81.  
  82.  2. SET MODEM COMMAND blah {} sets the modem's command string for "blah"
  83.     to be nothing, the empty string, and therefore should cause Kermit not
  84.     to send any command at all for "blah" or expect a response.
  85.  
  86. Once you get this working, then it's relatively simple to automate it in
  87. the Dialer, etc.  If you need more help, send email to:
  88.  
  89.   kermit-support@columbia.edu
  90.  
  91. - Frank